home *** CD-ROM | disk | FTP | other *** search
/ Faces of Papua New Guinea / Faces of Papua New Guinea by Wm. C. Clarke, Ph.D. (Wayzata Technology)(3211)(1995).bin / windows / playall3 / 00001_Script_1 next >
Text File  |  1995-04-10  |  282b  |  17 lines

  1.  
  2. on exitFrame
  3.   global mTimeNow
  4.   put the movieTime of sprite 10 into nowT
  5.   put the duration of cast "farmers.mov" into doneT
  6.   if nowT < mTimeNow then
  7.     go next
  8.   else 
  9.     if nowT < doneT then
  10.       go to frame 2
  11.     else
  12.       go next
  13.     end if
  14.   end if
  15. end
  16.  
  17.